home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / qb1 / pro9 / whatitis.doc < prev   
Text File  |  1991-12-22  |  1KB  |  25 lines

  1.     The following QuickBASIC 4.5 program will decompress and show most 256
  2. color GIF pictures. It works much faster compiled than from the QuickBASIC
  3. environment, but still, it is very slow compared to its machine language
  4. brothers.
  5.     The program was written for the 320x200x256 mode, but that can be easily
  6. changed. All of the pixels are plotted with one subroutine- the PLOT
  7. subprogram. (Don't forget to change the LINE (0,0)-(319,199),backgroung,BF
  8. to whatever resolution mode your changing it to. For instance, in screen 12
  9. you would change the (319,199) to (639,479).)
  10.     The program doesn't handle interlaced pictures- mainly because I was too
  11. lazy to implement it! Refer to the documentation for the GIF87a or GIF89a
  12. protocol for full information on the GIF protocol.
  13.  
  14. (Note: The program also works fine with MS-DOS 5's QBASIC)
  15.  
  16.     If you have any questions or complaints, then write/call me at:
  17.  
  18.     Rich Geldreich
  19.     410 Market St.
  20.     Gloucester City, New Jersey 08030
  21.     (609)-456-0721
  22.     
  23.     December 22, 1991
  24.  
  25.